home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / vsnprintf.c,v < prev    next >
Text File  |  1991-12-02  |  3KB  |  137 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.09.24.14.38.29;  author kupfer;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.20.06.49;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @vsnprintf routine.
  22. @
  23.  
  24.  
  25.  
  26. 1.1
  27. log
  28. @Initial revision
  29. @
  30. text
  31. @/* 
  32.  * vsnprintf.c --
  33.  *
  34.  *    Source code for the "vsnprintf" library procedure.
  35.  *
  36.  * Copyright 1990 Regents of the University of California
  37.  * Permission to use, copy, modify, and distribute this
  38.  * software and its documentation for any purpose and without
  39.  * fee is hereby granted, provided that the above copyright
  40.  * notice appear in all copies.  The University of California
  41.  * makes no representations about the suitability of this
  42.  * software for any purpose.  It is provided "as is" without
  43.  * express or implied warranty.
  44.  */
  45.  
  46. #ifndef lint
  47. static char rcsid[] = "$Header$ SPRITE (Berkeley)";
  48. #endif not lint
  49.  
  50. #include <stdio.h>
  51. #include <varargs.h>
  52. #include <errno.h>
  53.  
  54. /*
  55.  * Forward references to procedure defined in this file:
  56.  */
  57.  
  58. static void    WriteProc();
  59.  
  60.  
  61. /*
  62.  *----------------------------------------------------------------------
  63.  *
  64.  * vsnprintf --
  65.  *
  66.  *    Format and print one or more values, placing the output into
  67.  *    a string.  See the manual page for details of how the format
  68.  *    string is interpreted.  This procedure is similar to sprintf
  69.  *    except that the arguments have been prepackaged using varargs, 
  70.  *    and we've been told how much room there is in the string.
  71.  *
  72.  * Results:
  73.  *    The return value is a pointer to string, which has been
  74.  *    overwritten with formatted information.
  75.  *
  76.  * Side effects:
  77.  *    None.
  78.  *
  79.  *----------------------------------------------------------------------
  80.  */
  81.  
  82. char *
  83. vsnprintf(string, stringSize, format, args)
  84.     char *string;        /* Where to place result. */
  85.     int stringSize;        /* Number of bytes in "string". */
  86.     char *format;        /* How to format result.  See man page
  87.                  * for details. */
  88.     va_list args;        /* Variable-length list of arguments,
  89.                  * assembled using the varargs macros. */
  90. {
  91.     FILE stream;
  92.  
  93.     Stdio_Setup(&stream, 0, 1, (unsigned char *) string, stringSize,
  94.         (void (*)()) 0, WriteProc, (int (*)()) 0, (ClientData) 0);
  95.     (void) vfprintf(&stream, format, args);
  96.     putc(0, &stream);
  97.     return string;
  98. }
  99.  
  100. /*
  101.  *----------------------------------------------------------------------
  102.  *
  103.  * WriteProc --
  104.  *
  105.  *    This procedure is invoked when the "buffer" for the string
  106.  *    fills up.  Complain to the user and set an error flag.
  107.  *
  108.  * Results:
  109.  *    None.
  110.  *
  111.  * Side effects:
  112.  *    An error message is displayed, and the stream has been marked 
  113.  *    so that no other characters will be put into it.
  114.  *
  115.  *----------------------------------------------------------------------
  116.  */
  117.  
  118. static void
  119. WriteProc(stream)
  120.     register FILE *stream;
  121. {
  122.     fprintf(stderr, "vsnprintf: string overflow\n");
  123.     stream->status = ENOMEM;
  124. }
  125. @
  126.  
  127.  
  128. 1.1.1.1
  129. log
  130. @Initial branch for Sprite server.
  131. @
  132. text
  133. @d17 1
  134. a17 1
  135. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vsnprintf.c,v 1.1 90/09/24 14:38:29 kupfer Exp $ SPRITE (Berkeley)";
  136. @
  137.